forked from aff3ct/aff3ct
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Manual merge from development branch.
- Loading branch information
Showing
1,121 changed files
with
19,074 additions
and
19,051 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
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,26 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the doc/ directory with Sphinx | ||
sphinx: | ||
configuration: doc/source/conf.py | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: | ||
- epub | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: doc/requirements.txt | ||
|
||
# disable submodules | ||
submodules: | ||
exclude: all | ||
recursive: false |
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,21 @@ | ||
#!/bin/bash | ||
set -x | ||
|
||
if [ -z "$THREADS" ] | ||
then | ||
echo "The 'THREADS' environment variable is not set, default value = 1." | ||
THREADS=1 | ||
fi | ||
|
||
cd doc/ | ||
pip3 install --user -r requirements.txt | ||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi | ||
|
||
export SPHINX_BUILDERNAME="latex" | ||
make clean | ||
sphinx-build -M latexpdf source build -j $THREADS | ||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi | ||
|
||
export SPHINX_BUILDERNAME="html" | ||
sphinx-build -M html source build -j $THREADS | ||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi |
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
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
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
Submodule conf
updated
from 659b60 to 9d7257
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,27 @@ | ||
# AFF3CT Documentation Generation | ||
|
||
**AFF3CT** uses [Sphinx](http://www.sphinx-doc.org) and [Doxygen](http://www.doxygen.nl/) to generate the documentation. | ||
|
||
Install Sphinx, Doxygen and Sphinx extensions: | ||
|
||
```bash | ||
sudo apt install python3 python3-pip librsvg2-bin doxygen | ||
pip3 install --user -r requirements.txt | ||
``` | ||
|
||
Generate the HTML documentation: | ||
|
||
```bash | ||
make html | ||
``` | ||
|
||
Generate the PDF documentation: | ||
|
||
```bash | ||
make latexpdf | ||
``` | ||
|
||
**Be careful the previous `make` commands can take a long time (between 30 minutes and 1 hour).** | ||
|
||
The last command will create a new folder: `build/html`. | ||
In the `html` folder you just have to open the `index.html` file to read the generated documentation. |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.