This is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output.
Breathe is available from github and PyPI, the Python Package Index
The documentation is available here. Thank you to the people running Read the Docs for such an excellent service.
The source for the documentation is in the documentation
folder if you want
to built it and read it locally.
Breathe does not always get the attention it deserves but I am keen to keep it moving forward. If you report an issue, please keep reminding me about it until it is fixed. I should be better at this but in silence I tend to move to other things so keep reminding me.
Breathe doesn't have a set of tests at the moment. The documentation does a good job of running the different parts of the Breathe functionality but there is nothing to check that the output is appropriate.
To build the documentation, run make
in the root of the project.
This will run doxygen over the example code and then run the Breathe documentation. View the results at:
documentation/build/html/index.html
Development is currently done with:
- Python 2.7.4
- Docutils 0.11
- Sphinx 1.4
- Doxygen 1.8.4
Doxygen 1.5.1 seems to produce xml with repeated sections which causes Breathe some confusion. Not sure when this was resolved but it might be best to go for the latest possible.
There is a mailing list available on Google groups:
https://groups.google.com/forum/#!forum/sphinx-breathe
The previous mailing list was on librelist.com and the archives are available here.
Examples of Breathe used by other projects:
- cppformat [pdf]
- Lasso C API [pdf]
If you have an example you would like listed here, please make a github issue with the details.
Breathe is not the only solution to this problem. These are the alternatives that we know about. We are very happy to list others if you'd like to provide a link in a github issue or get in touch on the mailing list.
Breathe is maintained by michaeljones & vitaut with contributions from:
- nijel
- sebastianschaetz
- mbolivar
- queezythegreat
- abingham
- davidm
- hobu
- magro11
- scopatz
- vonj
- jmnas
- donkopotamus
- jo3w4rd
- Anthony Truchet
- Daniel Matz
- Andrew Hundt
- sebastinas
- robo9k
- sieben
- rweickelt
- sam-roth
- bnewbold
- serge-sans-paille
- dean0x7d
Thanks to:
- Dimitri van Heesch for Doxygen.
- Georg Brandl for Sphinx.
- David Goodger for Docutils and reStructuredText.
Inspired by Keepachangelog.com.
- 2016-03-19 - Breathe v4.2.0
- Added
- Output links to a class' parents & children.
- Support for Sphinx's needs_extensions config option.
- breathe-apidoc script for generating ReStructuredText stub files with Breathe directives from doxygen xml files.
- Fixed
- Handling default values in parameter declarations
- Output order not being reproducible due to iteration over Set.
- Handling of multiple pointers and references
- SEVERE: Duplicate ID warnings when using function overloads.
- Use project name for link references when using default project. So we use the project name instead of 'project0'.
- Added
- 2015-08-27 - Breathe v4.1.0
- Added
breathe_doxygen_config_options
config variable which allows for adding more config lines to the doxygen file used for the auto-directives.
- Fixed
- Display of array & array reference parameters for functions.
- Handling of links to classes with template arguments.
- Handling of unnamed enums in C.
- Naming of template parameter section.
- Finding functions that are within groups.
- Rendering of 'typename' and 'class' keywords for templates.
- Added
- 2015-04-02 - Breathe v4.0.0
- Significant work on the code base with miminal reStructureText interface changes. To be documented.
- 2014-11-09 - Breathe v3.2.0
- Nothing Added, Deprecated or Removed
- Fixed
- Changed docutils/Sphinx node usage to fix latex/pdf output.
- When checking for path separators check for both
/
and\
regardless of the platform. KeyError
when usingauto
directives without specifying the:project:
option even though the default project config setting was set.- Use of
doxygenfunction
no longer inappropriately triggers the duplicate target check and fails to output link targets. - Support for inline urls in the doxygen comments.
- Support for array notation in function parameters.
- Reduced intention by changing
section-defs
to usecontainer
&rubric
nodes rather thandesc
nodes with signatures & content. Now headings like 'Public Functions' appear inline with their subject matter.
- 2014-09-07 - Breathe v3.1.0
- Nothing Deprecated or Removed
- Added
- The
doxygenclass
directive can now reference template specialisations by specifying the specialisation in the argument name.
- The
- Fixed
- Displaying function parameters for Qt slots output. Previously they were missing even though Qt Slots are essentially just functions.
- Displaying headings from doxygen comments as emphasized text.
- Crash when generating warning about being unable to find a define, variable, enum, typedef or union.
- Only output the definition name for a function parameter if the declartion name is not available. Previously, where they were both available we were getting two names next to each other for no good reason.
- 2014-08-04 - Breathe v3.0.0
- Improve output of const, volatile, virtual and pure-virtual keywords.
- Fix css class output for HTML so that object types rather than names are output as the css classes. eg. 'function' instead of 'myFunction'.
- Fix issue with Breathe getting confused over functions appearing in header and implementation files.
- Improve matching for overloaded functions when using
doxygenfunction
directive. Also, provide a list of potential matches when no match is found. - Improved
:members:
implementation to handle inner classes properly. - Updated
doxygenstruct
to share thedoxygenclass
implementation path which grants it the options fromdoxygenclass
directive. - Added
:outline:
option support todoxygengroup
&doxygennamespace
directives. - Added
doxygennamespace
directive. - Added
:undoc-members:
option todoxygenclass
&doxygengroup
directives. - Breaking change: Removed
:sections:
option fordoxygenclass
&doxygengroup
directives and replaced it with:members:
,:protected-members:
and:private-members:
, and changedbreathe_default_sections
config variable tobreathe_default_members
. This is designed to more closely match the Sphinx autodoc functionality and interface.
- 2014-06-15 - Breathe v2.0.0
- Add compare script for checking changes to documentation caused by changes in the implementation.
- Switched to
https
reference for MathJax Javascript. - Breaking change: Change
autodoxygen*
directives to require explicitly declared source files in theconf.py
rather than attempting to detect them from the directive arguments. - Switch documentation hosting to ReadTheDocs.org.
- Breaking change: Switch to assuming all relative paths are relative to
the directory holding the
conf.py
file. Previously, it would assume they were relative to the user's current working directory. This breaks projects which use separate build & source directories. - Add
doxygenunion
directive. - Add
doxygengroup
directive. - Add support for lists in the output. They were previously ignored.
- Updated implementation to use the docutils nodes that Sphinx does where possible.
- Breathe v1.2.0
- Change log not recorded.