Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.db.iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.db.iris
Merge requests
!1
[Automatic] update links and the ci mostly
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
[Automatic] update links and the ci mostly
p1
into
master
Overview
1
Commits
2
Pipelines
2
Changes
1
Merged
[Automatic] update links and the ci mostly
Amir MOHAMMADI
requested to merge
p1
into
master
Oct 5, 2016
Overview
1
Commits
2
Pipelines
2
Changes
1
0
0
Merge request reports
Compare
master
version 1
c5e84c1c
Oct 5, 2016
master (base)
and
latest version
latest version
b82b2b11
2 commits,
Oct 15, 2016
version 1
c5e84c1c
1 commit,
Oct 5, 2016
1 file
+
28
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
doc/conf.py
+
28
−
3
View file @ b82b2b11
Edit in single-file editor
Open in Web IDE
Show full file
@@ -31,9 +31,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
@@ -112,7 +132,7 @@ pygments_style = 'sphinx'
# Some variables which are useful for generated material
project_variable
=
project
.
replace
(
'
.
'
,
'
_
'
)
short_description
=
u
'
Wine Database Interface for Bob
'
short_description
=
u
'
Bob access API for Fisher
\'
s Iris Flower Dataset
'
owner
=
[
u
'
Idiap Research Institute
'
]
@@ -217,8 +237,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
Loading