├── .gitignore
├── MANIFEST.in
├── doc
├── ros.png
├── index.rst
├── Makefile
└── conf.py
├── rosdoc.yaml
├── src
└── rosdoc_lite
│ ├── templates
│ ├── footer.html
│ ├── manifest.html
│ ├── landing.template
│ ├── header.html
│ ├── msg-index.template
│ ├── action.template
│ ├── msg.template
│ ├── styles.css
│ ├── msg-styles.css
│ ├── doxygen.css
│ └── doxy.template
│ ├── python_paths.py
│ ├── sphinxenator.py
│ ├── epyenator.py
│ ├── landing_page.py
│ ├── rdcore.py
│ ├── msgenator.py
│ ├── __init__.py
│ └── doxygenator.py
├── mainpage.dox
├── CMakeLists.txt
├── setup.py
├── README.md
├── scripts
└── rosdoc_lite
├── package.xml
├── test
└── test_doxygenator.py
└── CHANGELOG.rst
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 |
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
1 | recursive-include templates *
2 |
--------------------------------------------------------------------------------
/doc/ros.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ros-infrastructure/rosdoc_lite/HEAD/doc/ros.png
--------------------------------------------------------------------------------
/rosdoc.yaml:
--------------------------------------------------------------------------------
1 | - builder: sphinx
2 | sphinx_root_dir: doc
3 | required: True
4 |
--------------------------------------------------------------------------------
/src/rosdoc_lite/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |