Added plantuml extension
Aligned strings in CMakeList Modified the check on plantuml extension Some fixes Moved find_host_program for plantuml script
This commit is contained in:
committed by
Antonella Cascitelli
parent
fd3b2326b4
commit
5b2d557502
13
doc/conf.py
13
doc/conf.py
@@ -28,6 +28,16 @@ sys.path.insert(0, os.path.abspath('.'))
|
||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
||||
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||
extensions = ['sphinx.ext.pngmath', 'sphinx.ext.ifconfig', 'sphinx.ext.todo', 'sphinx.ext.extlinks', 'ocv', 'sphinx.ext.doctest']
|
||||
|
||||
have_plantuml_ext = False
|
||||
if tags.has('plantuml'):
|
||||
try:
|
||||
import sphinxcontrib.plantuml
|
||||
extensions.append("sphinxcontrib.plantuml")
|
||||
have_plantuml_ext = True
|
||||
except ImportError:
|
||||
print "No module sphinxcontrib.plantuml found, sphinx will not render UML diagrams"
|
||||
|
||||
doctest_test_doctest_blocks = 'block'
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
@@ -77,6 +87,9 @@ if version_patch:
|
||||
# directories to ignore when looking for source files.
|
||||
exclude_patterns = ['doc/tutorials/definitions']
|
||||
|
||||
if not have_plantuml_ext:
|
||||
exclude_patterns.append('**/uml/*')
|
||||
|
||||
# The reST default role (used for this markup: `text`) to use for all documents.
|
||||
#default_role = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user