File: conf.py.in

package info (click to toggle)
tulip 6.0.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196,224 kB
  • sloc: cpp: 571,851; ansic: 13,983; python: 4,105; sh: 1,555; yacc: 522; xml: 484; makefile: 168; pascal: 148; lex: 55
file content (239 lines) | stat: -rw-r--r-- 7,673 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# -*- coding: utf-8 -*-
#
# Tulip Python Bindings documentation build configuration file, created by
# sphinx-quickstart on Sat Apr  2 17:21:15 2011.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.

import sphinx
import sys

from docutils.nodes import emphasis
from docutils.parsers.rst.roles import set_classes

sphinxVersionStr = sphinx.__version__
sphinxVersion = float(sphinxVersionStr[:sphinxVersionStr.rfind('.')])

# 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.autodoc', 'sphinx.ext.coverage']
if sphinxVersion < 1.4:
    extensions.append('sphinx.ext.pngmath')
else:
    extensions.append('sphinx.ext.imgmath')

# Add any paths that contain templates here, relative to this directory.
templates_path = ['@CMAKE_CURRENT_SOURCE_DIR@/../common/_templates']

# The suffix of source filenames.
source_suffix = '.rst'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'Tulip Python'
copyright = u'@CurrentYear@, Tulip Team'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '@TulipMMVersion@'
# The full version, including alpha/beta/rc tags.
release = '@Tulip_VERSION@'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['html']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'

# -- Options for HTML output --------------------------------------------------

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
html_theme = 'agogo'
html_style = 'customized.css'

# The name of an image file (within the static path) to use as favicon of the
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = '@CMAKE_CURRENT_SOURCE_DIR@/../../textures/logo32x32.ico'

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['@CMAKE_CURRENT_SOURCE_DIR@/../common/_static',
                    '@CMAKE_CURRENT_SOURCE_DIR@/_static']

# If false, no module index is generated.
html_domain_indices = False

# If true, the index is split into individual pages for each letter.
html_split_index = False

# Output file base name for HTML help builder.
htmlhelp_basename = 'TulipPythonBindingsdoc'

# -- Options for LaTeX output ------------------------------------------------

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass.
latex_documents = [
  ('index', 'TulipPythonBindings.tex', u'Tulip Python Bindings Documentation',
   u'Tulip Team', 'manual'),
]

# -- Options for manual page output -------------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
    ('index', 'tulippythonbindings', u'Tulip Python Documentation',
     [u'Tulip Team'], 1)
]

autoclass_content = 'both'
methodDocstring = {}
methodSignature = {}


def process_docstring(app, what, name, obj, options, lines):

    if what == 'class' or not obj.__doc__:
        return

    currentSignature = ''
    n = name.replace('tulipgui.', '')
    n = n.replace('tulip.', '')

    nbMethods = 0
    pos = 0
    signaturePos = {}
    while obj.__doc__.find(n, pos) != -1:
        pos = obj.__doc__.find(n, pos)
        signaturePos[nbMethods] = pos
        pos += len(n)
        nbMethods += 1

    if n not in methodDocstring.keys():
        methodDocstring[n] = [0] * nbMethods

    methodIdx = 0

    for i in range(nbMethods):
        if methodDocstring[n][i] == 0:
            methodIdx = i
            start = signaturePos[i]
            end = obj.__doc__.find(')\n', start) + 1
            currentSignature = obj.__doc__[start:end]
            methodDocstring[n][i] = 1
            break

    signatureInLines = False
    for l in lines:
        if l.find(currentSignature) != -1:
            signatureInLines = True
            break

    if not signatureInLines:
        lines.insert(0, currentSignature)

    while len(lines) > 0 and lines[0].find(currentSignature) == -1:
        del lines[0]
    if len(lines) > 0 and lines[0].find(currentSignature) != -1:
        del lines[0]
    if len(lines) > 0 and methodIdx < nbMethods - 1:
        start = signaturePos[methodIdx+1]
        end = obj.__doc__.find(')\n', start) + 1
        nextSignature = obj.__doc__[start:end]
        linesIdx = 0
        while lines[linesIdx].find(nextSignature) == -1:
            linesIdx += 1
            if linesIdx >= len(lines):
                break

        curNbLines = len(lines)
        for i in range(curNbLines - linesIdx):
            del lines[linesIdx]


def process_signature(app, what, name, obj, opts, sig, ann):
    global methodSignature
    currentSignature = ''
    n = name.replace('tulipgui.', '')
    n = n.replace('tulip.', '')

    if what != 'class' and obj.__doc__:
        nbMethods = 0
        pos = 0
        signaturePos = {}
        while obj.__doc__.find(n, pos) != -1:
            pos = obj.__doc__.find(n, pos)
            signaturePos[nbMethods] = pos
            pos += len(n)
            nbMethods += 1

        if n not in methodSignature.keys():
            methodSignature[n] = [0] * nbMethods

        for i in range(nbMethods):
            if methodSignature[n][i] == 0:
                start = signaturePos[i]
                end = obj.__doc__.find(')\n', start) + 1
                currentSignature = obj.__doc__[start:end]
                methodSignature[n][i] = 1
                break

        idx1 = currentSignature.find('(')
        idx2 = currentSignature.rfind(')')

        if idx1 != -1 and idx2 != -1:
            s = currentSignature[idx1:idx2+1]
            if s != '':
                sig = s

    return (sig, ann)


# icon role taken from the sphinx-trap theme
# (https://github.com/jfardello/Sphinxtrap)
def faicon_role(role, rawtext, text, lineno, inliner, options={}, content=[]):
    options.update({'classes': ["fa"] + ["fa-" + x for x in text.split(",")]})
    options['classes'].append('icon-holder')
    set_classes(options)
    node = emphasis(**options)
    return [node], []


def mdicon_role(role, rawtext, text, lineno, inliner, options={}, content=[]):
    options.update({
        'classes': ['mdi'] + ['mdi-' + x for x in text.split(',')]
    })
    options['classes'].append('icon-holder')
    set_classes(options)
    node = emphasis(**options)
    return [node], []


# hack to include dynamically generated Tulip plugins documentation
def source_read(app, docname, source):
    if docname == 'tulippluginsdocumentation':
        f = open('@CMAKE_CURRENT_BINARY_DIR@/tulippluginsdocumentation.rst',
                 'r', encoding='utf-8')
        source[0] += f.read()


def setup(app):
    app.connect('autodoc-process-signature', process_signature)
    app.connect('autodoc-process-docstring', process_docstring)
    app.connect('source-read', source_read)
    app.add_role('faicon', faicon_role)
    app.add_role('mdicon', mdicon_role)