Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.blitz
Commits
8c0c7f54
Commit
8c0c7f54
authored
Oct 05, 2016
by
Amir Mohammadi
Browse files
[Automatic] update links and the ci mostly
parent
be94f6be
Pipeline
#4465
failed with stage
in 12 minutes and 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
develop.cfg
View file @
8c0c7f54
...
...
@@ -17,7 +17,7 @@ verbose = true
newest = false
[sources]
bob.extension = git
git@
gitlab.idiap.ch
:
bob/bob.extension
bob.extension = git
https://
gitlab.idiap.ch
/
bob/bob.extension
[scripts]
recipe = bob.buildout:scripts
doc/conf.py
View file @
8c0c7f54
...
...
@@ -30,9 +30,29 @@ extensions = [
import
sphinx
if
sphinx
.
__version__
>=
"1.4.1"
:
extensions
.
append
(
'sphinx.ext.imgmath'
)
imgmath_image_format
=
'svg'
else
:
extensions
.
append
(
'sphinx.ext.pngmath'
)
# Be picky about warnings
nitpicky
=
True
# Ignores stuff we can't easily resolve on other project's sphinx manuals
nitpick_ignore
=
[]
# Allows the user to override warnings from a separate file
if
os
.
path
.
exists
(
'nitpick-exceptions.txt'
):
for
line
in
open
(
'nitpick-exceptions.txt'
):
if
line
.
strip
()
==
""
or
line
.
startswith
(
"#"
):
continue
dtype
,
target
=
line
.
split
(
None
,
1
)
target
=
target
.
strip
()
try
:
# python 2.x
target
=
unicode
(
target
)
except
NameError
:
pass
nitpick_ignore
.
append
((
dtype
,
target
))
# Always includes todos
todo_include_todos
=
True
...
...
@@ -59,7 +79,7 @@ source_suffix = '.rst'
master_doc
=
'index'
# General information about the project.
project
=
u
'
bob.blitz
'
project
=
u
'
<PROJECT>
'
import
time
copyright
=
u
'%s, Idiap Research Institute'
%
time
.
strftime
(
'%Y'
)
...
...
@@ -111,7 +131,7 @@ pygments_style = 'sphinx'
# Some variables which are useful for generated material
project_variable
=
project
.
replace
(
'.'
,
'_'
)
short_description
=
u
'
Bindings for Blitz++ (a C++ array template library)
'
short_description
=
u
'
<SHORT_DESCRIPTION>
'
owner
=
[
u
'Idiap Research Institute'
]
...
...
@@ -195,6 +215,7 @@ html_favicon = 'img/favicon.ico'
# Output file base name for HTML help builder.
htmlhelp_basename
=
project_variable
+
u
'_doc'
# -- Post configuration --------------------------------------------------------
# Included after all input documents
...
...
@@ -215,8 +236,13 @@ autodoc_default_flags = [
]
# For inter-documentation mapping:
from
bob.extension.utils
import
link_documentation
intersphinx_mapping
=
link_documentation
()
from
bob.extension.utils
import
link_documentation
,
load_requirements
sphinx_requirements
=
"extra-intersphinx.txt"
if
os
.
path
.
exists
(
sphinx_requirements
):
intersphinx_mapping
=
link_documentation
(
additional_packages
=
load_requirements
(
sphinx_requirements
))
else
:
intersphinx_mapping
=
link_documentation
()
# We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment