-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'codac2_dev' of github.com:codac-team/codac into codac2_dev
- Loading branch information
Showing
19 changed files
with
860 additions
and
710 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
div.rst-content a:visited | ||
{ | ||
color: #2980b9; | ||
text-decoration: none; | ||
} | ||
|
||
div.rst-content li.toctree-l1 > a | ||
{ | ||
font-weight: bold; | ||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = 'Codac' | ||
copyright = 'Codac Team' | ||
author = 'Codac Team' | ||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
extensions = [ | ||
'sphinx_rtd_theme', | ||
] | ||
|
||
templates_path = ['_templates'] | ||
exclude_patterns = [] | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_static_path = ['_static'] | ||
html_theme = "sphinx_rtd_theme" | ||
html_logo = "_static/logos/logo_codac.svg" | ||
|
||
# These paths are either relative to html_static_path | ||
# or fully qualified paths (eg. https://...) | ||
html_css_files = [ | ||
'css/custom.css', | ||
] | ||
|
||
html_theme_options = { | ||
'logo_only': True, | ||
'display_version': True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Codac manual | ||
============ | ||
|
||
|
||
.. toctree:: | ||
:caption: Overview of Codac | ||
:maxdepth: 3 | ||
|
||
Constraint programming and IA <http://codac.io> | ||
The Codac framework <http://codac.io> | ||
Target audience <http://codac.io> | ||
|
||
|
||
.. toctree:: | ||
:caption: User manual | ||
:maxdepth: 3 | ||
|
||
installation/index.rst | ||
intervals/index.rst | ||
linear/index.rst | ||
functions/index.rst | ||
tubes/index.rst | ||
contractors/index.rst | ||
separators/index.rst | ||
pavers/index.rst | ||
cn/index.rst | ||
geometry/index.rst | ||
ellipsoids/index.rst | ||
topology/index.rst | ||
visualization/index.rst | ||
extensions/index.rst | ||
seealso/index.rst | ||
references/index.rst | ||
|
||
|
||
.. toctree:: | ||
:caption: How-to guides | ||
:maxdepth: 3 | ||
|
||
howto/robotics/index.rst | ||
howto/geometry/index.rst | ||
howto/dynamical/index.rst | ||
|
||
|
||
.. toctree:: | ||
:caption: Development | ||
:maxdepth: 3 | ||
|
||
Changelog <http://codac.io> | ||
C++ API <http://codac.io> | ||
Information for developers <http://codac.io> |
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
include(FindPackageHandleStandardArgs) | ||
|
||
# We are likely to find Sphinx near the Python interpreter | ||
find_package(PythonInterp) | ||
if(PYTHONINTERP_FOUND) | ||
get_filename_component(_PYTHON_DIR "${PYTHON_EXECUTABLE}" DIRECTORY) | ||
set( | ||
_PYTHON_PATHS | ||
"${_PYTHON_DIR}" | ||
"${_PYTHON_DIR}/bin" | ||
"${_PYTHON_DIR}/Scripts") | ||
endif() | ||
|
||
find_program( | ||
SPHINX_EXECUTABLE | ||
NAMES sphinx-build sphinx-build.exe | ||
HINTS ${_PYTHON_PATHS}) | ||
mark_as_advanced(SPHINX_EXECUTABLE) | ||
|
||
find_package_handle_standard_args(Sphinx DEFAULT_MSG SPHINX_EXECUTABLE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.