1*cfb92d14SAndroid Build Coastguard Worker# -*- coding: utf-8 -*- 2*cfb92d14SAndroid Build Coastguard Worker# 3*cfb92d14SAndroid Build Coastguard Worker# Copyright (c) 2016, The OpenThread Authors. 4*cfb92d14SAndroid Build Coastguard Worker# All rights reserved. 5*cfb92d14SAndroid Build Coastguard Worker# 6*cfb92d14SAndroid Build Coastguard Worker# Redistribution and use in source and binary forms, with or without 7*cfb92d14SAndroid Build Coastguard Worker# modification, are permitted provided that the following conditions are met: 8*cfb92d14SAndroid Build Coastguard Worker# 1. Redistributions of source code must retain the above copyright 9*cfb92d14SAndroid Build Coastguard Worker# notice, this list of conditions and the following disclaimer. 10*cfb92d14SAndroid Build Coastguard Worker# 2. Redistributions in binary form must reproduce the above copyright 11*cfb92d14SAndroid Build Coastguard Worker# notice, this list of conditions and the following disclaimer in the 12*cfb92d14SAndroid Build Coastguard Worker# documentation and/or other materials provided with the distribution. 13*cfb92d14SAndroid Build Coastguard Worker# 3. Neither the name of the copyright holder nor the 14*cfb92d14SAndroid Build Coastguard Worker# names of its contributors may be used to endorse or promote products 15*cfb92d14SAndroid Build Coastguard Worker# derived from this software without specific prior written permission. 16*cfb92d14SAndroid Build Coastguard Worker# 17*cfb92d14SAndroid Build Coastguard Worker# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18*cfb92d14SAndroid Build Coastguard Worker# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19*cfb92d14SAndroid Build Coastguard Worker# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20*cfb92d14SAndroid Build Coastguard Worker# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 21*cfb92d14SAndroid Build Coastguard Worker# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22*cfb92d14SAndroid Build Coastguard Worker# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23*cfb92d14SAndroid Build Coastguard Worker# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24*cfb92d14SAndroid Build Coastguard Worker# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25*cfb92d14SAndroid Build Coastguard Worker# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26*cfb92d14SAndroid Build Coastguard Worker# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27*cfb92d14SAndroid Build Coastguard Worker# POSSIBILITY OF SUCH DAMAGE. 28*cfb92d14SAndroid Build Coastguard Worker# 29*cfb92d14SAndroid Build Coastguard Worker 30*cfb92d14SAndroid Build Coastguard Worker# 31*cfb92d14SAndroid Build Coastguard Worker# Thread Harness Automation documentation build configuration file, created by 32*cfb92d14SAndroid Build Coastguard Worker# sphinx-quickstart on Wed Jun 29 15:18:24 2016. 33*cfb92d14SAndroid Build Coastguard Worker# 34*cfb92d14SAndroid Build Coastguard Worker# This file is execfile()d with the current directory set to its 35*cfb92d14SAndroid Build Coastguard Worker# containing dir. 36*cfb92d14SAndroid Build Coastguard Worker# 37*cfb92d14SAndroid Build Coastguard Worker# Note that not all possible configuration values are present in this 38*cfb92d14SAndroid Build Coastguard Worker# autogenerated file. 39*cfb92d14SAndroid Build Coastguard Worker# 40*cfb92d14SAndroid Build Coastguard Worker# All configuration values have a default; values that are commented out 41*cfb92d14SAndroid Build Coastguard Worker# serve to show the default. 42*cfb92d14SAndroid Build Coastguard Worker 43*cfb92d14SAndroid Build Coastguard Worker# If extensions (or modules to document with autodoc) are in another directory, 44*cfb92d14SAndroid Build Coastguard Worker# add these directories to sys.path here. If the directory is relative to the 45*cfb92d14SAndroid Build Coastguard Worker# documentation root, use os.path.abspath to make it absolute, like shown here. 46*cfb92d14SAndroid Build Coastguard Worker# 47*cfb92d14SAndroid Build Coastguard Workerimport os 48*cfb92d14SAndroid Build Coastguard Workerimport sys 49*cfb92d14SAndroid Build Coastguard Workerimport sphinx_rtd_theme 50*cfb92d14SAndroid Build Coastguard Worker 51*cfb92d14SAndroid Build Coastguard Workersys.path.insert(0, os.path.abspath('..')) 52*cfb92d14SAndroid Build Coastguard Worker 53*cfb92d14SAndroid Build Coastguard Worker# -- General configuration ------------------------------------------------ 54*cfb92d14SAndroid Build Coastguard Worker 55*cfb92d14SAndroid Build Coastguard Worker# If your documentation needs a minimal Sphinx version, state it here. 56*cfb92d14SAndroid Build Coastguard Worker# 57*cfb92d14SAndroid Build Coastguard Worker# needs_sphinx = '1.0' 58*cfb92d14SAndroid Build Coastguard Worker 59*cfb92d14SAndroid Build Coastguard Worker# Add any Sphinx extension module names here, as strings. They can be 60*cfb92d14SAndroid Build Coastguard Worker# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 61*cfb92d14SAndroid Build Coastguard Worker# ones. 62*cfb92d14SAndroid Build Coastguard Workerextensions = ['sphinx.ext.autodoc', 'sphinxcontrib.napoleon'] 63*cfb92d14SAndroid Build Coastguard Worker 64*cfb92d14SAndroid Build Coastguard Worker# Add any paths that contain templates here, relative to this directory. 65*cfb92d14SAndroid Build Coastguard Workertemplates_path = ['_templates'] 66*cfb92d14SAndroid Build Coastguard Worker 67*cfb92d14SAndroid Build Coastguard Worker# The suffix(es) of source filenames. 68*cfb92d14SAndroid Build Coastguard Worker# You can specify multiple suffix as a list of string: 69*cfb92d14SAndroid Build Coastguard Worker# 70*cfb92d14SAndroid Build Coastguard Worker# source_suffix = ['.rst', '.md'] 71*cfb92d14SAndroid Build Coastguard Workersource_suffix = '.rst' 72*cfb92d14SAndroid Build Coastguard Worker 73*cfb92d14SAndroid Build Coastguard Worker# The encoding of source files. 74*cfb92d14SAndroid Build Coastguard Worker# 75*cfb92d14SAndroid Build Coastguard Worker# source_encoding = 'utf-8-sig' 76*cfb92d14SAndroid Build Coastguard Worker 77*cfb92d14SAndroid Build Coastguard Worker# The master toctree document. 78*cfb92d14SAndroid Build Coastguard Workermaster_doc = 'index' 79*cfb92d14SAndroid Build Coastguard Worker 80*cfb92d14SAndroid Build Coastguard Worker# General information about the project. 81*cfb92d14SAndroid Build Coastguard Workerproject = u'Thread Harness Automation' 82*cfb92d14SAndroid Build Coastguard Workercopyright = u'2019, OpenThread' 83*cfb92d14SAndroid Build Coastguard Workerauthor = u'OpenThread' 84*cfb92d14SAndroid Build Coastguard Worker 85*cfb92d14SAndroid Build Coastguard Worker# The version info for the project you're documenting, acts as replacement for 86*cfb92d14SAndroid Build Coastguard Worker# |version| and |release|, also used in various other places throughout the 87*cfb92d14SAndroid Build Coastguard Worker# built documents. 88*cfb92d14SAndroid Build Coastguard Worker# 89*cfb92d14SAndroid Build Coastguard Worker# The short X.Y version. 90*cfb92d14SAndroid Build Coastguard Workerversion = u'0.5' 91*cfb92d14SAndroid Build Coastguard Worker# The full version, including alpha/beta/rc tags. 92*cfb92d14SAndroid Build Coastguard Workerrelease = u'0.5' 93*cfb92d14SAndroid Build Coastguard Worker 94*cfb92d14SAndroid Build Coastguard Worker# The language for content autogenerated by Sphinx. Refer to documentation 95*cfb92d14SAndroid Build Coastguard Worker# for a list of supported languages. 96*cfb92d14SAndroid Build Coastguard Worker# 97*cfb92d14SAndroid Build Coastguard Worker# This is also used if you do content translation via gettext catalogs. 98*cfb92d14SAndroid Build Coastguard Worker# Usually you set "language" from the command line for these cases. 99*cfb92d14SAndroid Build Coastguard Workerlanguage = None 100*cfb92d14SAndroid Build Coastguard Worker 101*cfb92d14SAndroid Build Coastguard Worker# There are two options for replacing |today|: either, you set today to some 102*cfb92d14SAndroid Build Coastguard Worker# non-false value, then it is used: 103*cfb92d14SAndroid Build Coastguard Worker# 104*cfb92d14SAndroid Build Coastguard Worker# today = '' 105*cfb92d14SAndroid Build Coastguard Worker# 106*cfb92d14SAndroid Build Coastguard Worker# Else, today_fmt is used as the format for a strftime call. 107*cfb92d14SAndroid Build Coastguard Worker# 108*cfb92d14SAndroid Build Coastguard Worker# today_fmt = '%B %d, %Y' 109*cfb92d14SAndroid Build Coastguard Worker 110*cfb92d14SAndroid Build Coastguard Worker# List of patterns, relative to source directory, that match files and 111*cfb92d14SAndroid Build Coastguard Worker# directories to ignore when looking for source files. 112*cfb92d14SAndroid Build Coastguard Worker# This patterns also effect to html_static_path and html_extra_path 113*cfb92d14SAndroid Build Coastguard Workerexclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] 114*cfb92d14SAndroid Build Coastguard Worker 115*cfb92d14SAndroid Build Coastguard Worker# The reST default role (used for this markup: `text`) to use for all 116*cfb92d14SAndroid Build Coastguard Worker# documents. 117*cfb92d14SAndroid Build Coastguard Worker# 118*cfb92d14SAndroid Build Coastguard Worker# default_role = None 119*cfb92d14SAndroid Build Coastguard Worker 120*cfb92d14SAndroid Build Coastguard Worker# If true, '()' will be appended to :func: etc. cross-reference text. 121*cfb92d14SAndroid Build Coastguard Worker# 122*cfb92d14SAndroid Build Coastguard Worker# add_function_parentheses = True 123*cfb92d14SAndroid Build Coastguard Worker 124*cfb92d14SAndroid Build Coastguard Worker# If true, the current module name will be prepended to all description 125*cfb92d14SAndroid Build Coastguard Worker# unit titles (such as .. function::). 126*cfb92d14SAndroid Build Coastguard Worker# 127*cfb92d14SAndroid Build Coastguard Worker# add_module_names = True 128*cfb92d14SAndroid Build Coastguard Worker 129*cfb92d14SAndroid Build Coastguard Worker# If true, sectionauthor and moduleauthor directives will be shown in the 130*cfb92d14SAndroid Build Coastguard Worker# output. They are ignored by default. 131*cfb92d14SAndroid Build Coastguard Worker# 132*cfb92d14SAndroid Build Coastguard Worker# show_authors = False 133*cfb92d14SAndroid Build Coastguard Worker 134*cfb92d14SAndroid Build Coastguard Worker# The name of the Pygments (syntax highlighting) style to use. 135*cfb92d14SAndroid Build Coastguard Workerpygments_style = 'sphinx' 136*cfb92d14SAndroid Build Coastguard Worker 137*cfb92d14SAndroid Build Coastguard Worker# A list of ignored prefixes for module index sorting. 138*cfb92d14SAndroid Build Coastguard Worker# modindex_common_prefix = [] 139*cfb92d14SAndroid Build Coastguard Worker 140*cfb92d14SAndroid Build Coastguard Worker# If true, keep warnings as "system message" paragraphs in the built documents. 141*cfb92d14SAndroid Build Coastguard Worker# keep_warnings = False 142*cfb92d14SAndroid Build Coastguard Worker 143*cfb92d14SAndroid Build Coastguard Worker# If true, `todo` and `todoList` produce output, else they produce nothing. 144*cfb92d14SAndroid Build Coastguard Workertodo_include_todos = False 145*cfb92d14SAndroid Build Coastguard Worker 146*cfb92d14SAndroid Build Coastguard Worker# -- Options for HTML output ---------------------------------------------- 147*cfb92d14SAndroid Build Coastguard Worker 148*cfb92d14SAndroid Build Coastguard Worker# The theme to use for HTML and HTML Help pages. See the documentation for 149*cfb92d14SAndroid Build Coastguard Worker# a list of builtin themes. 150*cfb92d14SAndroid Build Coastguard Worker# 151*cfb92d14SAndroid Build Coastguard Worker# html_theme = 'alabaster' 152*cfb92d14SAndroid Build Coastguard Workerhtml_theme = 'sphinx_rtd_theme' 153*cfb92d14SAndroid Build Coastguard Worker 154*cfb92d14SAndroid Build Coastguard Worker# Theme options are theme-specific and customize the look and feel of a theme 155*cfb92d14SAndroid Build Coastguard Worker# further. For a list of options available for each theme, see the 156*cfb92d14SAndroid Build Coastguard Worker# documentation. 157*cfb92d14SAndroid Build Coastguard Worker# 158*cfb92d14SAndroid Build Coastguard Worker# html_theme_options = {} 159*cfb92d14SAndroid Build Coastguard Worker 160*cfb92d14SAndroid Build Coastguard Worker# Add any paths that contain custom themes here, relative to this directory. 161*cfb92d14SAndroid Build Coastguard Worker# html_theme_path = [] 162*cfb92d14SAndroid Build Coastguard Workerhtml_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 163*cfb92d14SAndroid Build Coastguard Worker 164*cfb92d14SAndroid Build Coastguard Worker# The name for this set of Sphinx documents. 165*cfb92d14SAndroid Build Coastguard Worker# "<project> v<release> documentation" by default. 166*cfb92d14SAndroid Build Coastguard Worker# 167*cfb92d14SAndroid Build Coastguard Worker# html_title = u'Thread Harness Automation v0.5' 168*cfb92d14SAndroid Build Coastguard Worker 169*cfb92d14SAndroid Build Coastguard Worker# A shorter title for the navigation bar. Default is the same as html_title. 170*cfb92d14SAndroid Build Coastguard Worker# 171*cfb92d14SAndroid Build Coastguard Worker# html_short_title = None 172*cfb92d14SAndroid Build Coastguard Worker 173*cfb92d14SAndroid Build Coastguard Worker# The name of an image file (relative to this directory) to place at the top 174*cfb92d14SAndroid Build Coastguard Worker# of the sidebar. 175*cfb92d14SAndroid Build Coastguard Worker# 176*cfb92d14SAndroid Build Coastguard Worker# html_logo = None 177*cfb92d14SAndroid Build Coastguard Worker 178*cfb92d14SAndroid Build Coastguard Worker# The name of an image file (relative to this directory) to use as a favicon of 179*cfb92d14SAndroid Build Coastguard Worker# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 180*cfb92d14SAndroid Build Coastguard Worker# pixels large. 181*cfb92d14SAndroid Build Coastguard Worker# 182*cfb92d14SAndroid Build Coastguard Worker# html_favicon = None 183*cfb92d14SAndroid Build Coastguard Worker 184*cfb92d14SAndroid Build Coastguard Worker# Add any paths that contain custom static files (such as style sheets) here, 185*cfb92d14SAndroid Build Coastguard Worker# relative to this directory. They are copied after the builtin static files, 186*cfb92d14SAndroid Build Coastguard Worker# so a file named "default.css" will overwrite the builtin "default.css". 187*cfb92d14SAndroid Build Coastguard Workerhtml_static_path = ['_static'] 188*cfb92d14SAndroid Build Coastguard Worker 189*cfb92d14SAndroid Build Coastguard Worker# Add any extra paths that contain custom files (such as robots.txt or 190*cfb92d14SAndroid Build Coastguard Worker# .htaccess) here, relative to this directory. These files are copied 191*cfb92d14SAndroid Build Coastguard Worker# directly to the root of the documentation. 192*cfb92d14SAndroid Build Coastguard Worker# 193*cfb92d14SAndroid Build Coastguard Worker# html_extra_path = [] 194*cfb92d14SAndroid Build Coastguard Worker 195*cfb92d14SAndroid Build Coastguard Worker# If not None, a 'Last updated on:' timestamp is inserted at every page 196*cfb92d14SAndroid Build Coastguard Worker# bottom, using the given strftime format. 197*cfb92d14SAndroid Build Coastguard Worker# The empty string is equivalent to '%b %d, %Y'. 198*cfb92d14SAndroid Build Coastguard Worker# 199*cfb92d14SAndroid Build Coastguard Worker# html_last_updated_fmt = None 200*cfb92d14SAndroid Build Coastguard Worker 201*cfb92d14SAndroid Build Coastguard Worker# If true, SmartyPants will be used to convert quotes and dashes to 202*cfb92d14SAndroid Build Coastguard Worker# typographically correct entities. 203*cfb92d14SAndroid Build Coastguard Worker# 204*cfb92d14SAndroid Build Coastguard Worker# html_use_smartypants = True 205*cfb92d14SAndroid Build Coastguard Worker 206*cfb92d14SAndroid Build Coastguard Worker# Custom sidebar templates, maps document names to template names. 207*cfb92d14SAndroid Build Coastguard Worker# 208*cfb92d14SAndroid Build Coastguard Worker# html_sidebars = {} 209*cfb92d14SAndroid Build Coastguard Worker 210*cfb92d14SAndroid Build Coastguard Worker# Additional templates that should be rendered to pages, maps page names to 211*cfb92d14SAndroid Build Coastguard Worker# template names. 212*cfb92d14SAndroid Build Coastguard Worker# 213*cfb92d14SAndroid Build Coastguard Worker# html_additional_pages = {} 214*cfb92d14SAndroid Build Coastguard Worker 215*cfb92d14SAndroid Build Coastguard Worker# If false, no module index is generated. 216*cfb92d14SAndroid Build Coastguard Worker# 217*cfb92d14SAndroid Build Coastguard Worker# html_domain_indices = True 218*cfb92d14SAndroid Build Coastguard Worker 219*cfb92d14SAndroid Build Coastguard Worker# If false, no index is generated. 220*cfb92d14SAndroid Build Coastguard Worker# 221*cfb92d14SAndroid Build Coastguard Worker# html_use_index = True 222*cfb92d14SAndroid Build Coastguard Worker 223*cfb92d14SAndroid Build Coastguard Worker# If true, the index is split into individual pages for each letter. 224*cfb92d14SAndroid Build Coastguard Worker# 225*cfb92d14SAndroid Build Coastguard Worker# html_split_index = False 226*cfb92d14SAndroid Build Coastguard Worker 227*cfb92d14SAndroid Build Coastguard Worker# If true, links to the reST sources are added to the pages. 228*cfb92d14SAndroid Build Coastguard Worker# 229*cfb92d14SAndroid Build Coastguard Worker# html_show_sourcelink = True 230*cfb92d14SAndroid Build Coastguard Worker 231*cfb92d14SAndroid Build Coastguard Worker# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. 232*cfb92d14SAndroid Build Coastguard Worker# 233*cfb92d14SAndroid Build Coastguard Worker# html_show_sphinx = True 234*cfb92d14SAndroid Build Coastguard Worker 235*cfb92d14SAndroid Build Coastguard Worker# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. 236*cfb92d14SAndroid Build Coastguard Worker# 237*cfb92d14SAndroid Build Coastguard Worker# html_show_copyright = True 238*cfb92d14SAndroid Build Coastguard Worker 239*cfb92d14SAndroid Build Coastguard Worker# If true, an OpenSearch description file will be output, and all pages will 240*cfb92d14SAndroid Build Coastguard Worker# contain a <link> tag referring to it. The value of this option must be the 241*cfb92d14SAndroid Build Coastguard Worker# base URL from which the finished HTML is served. 242*cfb92d14SAndroid Build Coastguard Worker# 243*cfb92d14SAndroid Build Coastguard Worker# html_use_opensearch = '' 244*cfb92d14SAndroid Build Coastguard Worker 245*cfb92d14SAndroid Build Coastguard Worker# This is the file name suffix for HTML files (e.g. ".xhtml"). 246*cfb92d14SAndroid Build Coastguard Worker# html_file_suffix = None 247*cfb92d14SAndroid Build Coastguard Worker 248*cfb92d14SAndroid Build Coastguard Worker# Language to be used for generating the HTML full-text search index. 249*cfb92d14SAndroid Build Coastguard Worker# Sphinx supports the following languages: 250*cfb92d14SAndroid Build Coastguard Worker# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' 251*cfb92d14SAndroid Build Coastguard Worker# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr', 'zh' 252*cfb92d14SAndroid Build Coastguard Worker# 253*cfb92d14SAndroid Build Coastguard Worker# html_search_language = 'en' 254*cfb92d14SAndroid Build Coastguard Worker 255*cfb92d14SAndroid Build Coastguard Worker# A dictionary with options for the search language support, empty by default. 256*cfb92d14SAndroid Build Coastguard Worker# 'ja' uses this config value. 257*cfb92d14SAndroid Build Coastguard Worker# 'zh' user can custom change `jieba` dictionary path. 258*cfb92d14SAndroid Build Coastguard Worker# 259*cfb92d14SAndroid Build Coastguard Worker# html_search_options = {'type': 'default'} 260*cfb92d14SAndroid Build Coastguard Worker 261*cfb92d14SAndroid Build Coastguard Worker# The name of a javascript file (relative to the configuration directory) that 262*cfb92d14SAndroid Build Coastguard Worker# implements a search results scorer. If empty, the default will be used. 263*cfb92d14SAndroid Build Coastguard Worker# 264*cfb92d14SAndroid Build Coastguard Worker# html_search_scorer = 'scorer.js' 265*cfb92d14SAndroid Build Coastguard Worker 266*cfb92d14SAndroid Build Coastguard Worker# Output file base name for HTML help builder. 267*cfb92d14SAndroid Build Coastguard Workerhtmlhelp_basename = 'ThreadHarnessAutomationdoc' 268*cfb92d14SAndroid Build Coastguard Worker 269*cfb92d14SAndroid Build Coastguard Worker# -- Options for LaTeX output --------------------------------------------- 270*cfb92d14SAndroid Build Coastguard Worker 271*cfb92d14SAndroid Build Coastguard Workerlatex_elements = { 272*cfb92d14SAndroid Build Coastguard Worker # The paper size ('letterpaper' or 'a4paper'). 273*cfb92d14SAndroid Build Coastguard Worker # 274*cfb92d14SAndroid Build Coastguard Worker # 'papersize': 'letterpaper', 275*cfb92d14SAndroid Build Coastguard Worker # The font size ('10pt', '11pt' or '12pt'). 276*cfb92d14SAndroid Build Coastguard Worker # 277*cfb92d14SAndroid Build Coastguard Worker # 'pointsize': '10pt', 278*cfb92d14SAndroid Build Coastguard Worker # Additional stuff for the LaTeX preamble. 279*cfb92d14SAndroid Build Coastguard Worker # 280*cfb92d14SAndroid Build Coastguard Worker # 'preamble': '', 281*cfb92d14SAndroid Build Coastguard Worker # Latex figure (float) alignment 282*cfb92d14SAndroid Build Coastguard Worker # 283*cfb92d14SAndroid Build Coastguard Worker # 'figure_align': 'htbp', 284*cfb92d14SAndroid Build Coastguard Worker} 285*cfb92d14SAndroid Build Coastguard Worker 286*cfb92d14SAndroid Build Coastguard Worker# Grouping the document tree into LaTeX files. List of tuples 287*cfb92d14SAndroid Build Coastguard Worker# (source start file, target name, title, 288*cfb92d14SAndroid Build Coastguard Worker# author, documentclass [howto, manual, or own class]). 289*cfb92d14SAndroid Build Coastguard Workerlatex_documents = [( 290*cfb92d14SAndroid Build Coastguard Worker master_doc, 291*cfb92d14SAndroid Build Coastguard Worker 'ThreadHarnessAutomation.tex', 292*cfb92d14SAndroid Build Coastguard Worker u'Thread Harness Automation Documentation', 293*cfb92d14SAndroid Build Coastguard Worker u'OpenThread', 294*cfb92d14SAndroid Build Coastguard Worker 'manual', 295*cfb92d14SAndroid Build Coastguard Worker)] 296*cfb92d14SAndroid Build Coastguard Worker 297*cfb92d14SAndroid Build Coastguard Worker# The name of an image file (relative to this directory) to place at the top of 298*cfb92d14SAndroid Build Coastguard Worker# the title page. 299*cfb92d14SAndroid Build Coastguard Worker# 300*cfb92d14SAndroid Build Coastguard Worker# latex_logo = None 301*cfb92d14SAndroid Build Coastguard Worker 302*cfb92d14SAndroid Build Coastguard Worker# For "manual" documents, if this is true, then toplevel headings are parts, 303*cfb92d14SAndroid Build Coastguard Worker# not chapters. 304*cfb92d14SAndroid Build Coastguard Worker# 305*cfb92d14SAndroid Build Coastguard Worker# latex_use_parts = False 306*cfb92d14SAndroid Build Coastguard Worker 307*cfb92d14SAndroid Build Coastguard Worker# If true, show page references after internal links. 308*cfb92d14SAndroid Build Coastguard Worker# 309*cfb92d14SAndroid Build Coastguard Worker# latex_show_pagerefs = False 310*cfb92d14SAndroid Build Coastguard Worker 311*cfb92d14SAndroid Build Coastguard Worker# If true, show URL addresses after external links. 312*cfb92d14SAndroid Build Coastguard Worker# 313*cfb92d14SAndroid Build Coastguard Worker# latex_show_urls = False 314*cfb92d14SAndroid Build Coastguard Worker 315*cfb92d14SAndroid Build Coastguard Worker# Documents to append as an appendix to all manuals. 316*cfb92d14SAndroid Build Coastguard Worker# 317*cfb92d14SAndroid Build Coastguard Worker# latex_appendices = [] 318*cfb92d14SAndroid Build Coastguard Worker 319*cfb92d14SAndroid Build Coastguard Worker# If false, no module index is generated. 320*cfb92d14SAndroid Build Coastguard Worker# 321*cfb92d14SAndroid Build Coastguard Worker# latex_domain_indices = True 322*cfb92d14SAndroid Build Coastguard Worker 323*cfb92d14SAndroid Build Coastguard Worker# -- Options for manual page output --------------------------------------- 324*cfb92d14SAndroid Build Coastguard Worker 325*cfb92d14SAndroid Build Coastguard Worker# One entry per manual page. List of tuples 326*cfb92d14SAndroid Build Coastguard Worker# (source start file, name, description, authors, manual section). 327*cfb92d14SAndroid Build Coastguard Workerman_pages = [( 328*cfb92d14SAndroid Build Coastguard Worker master_doc, 329*cfb92d14SAndroid Build Coastguard Worker 'threadharnessautomation', 330*cfb92d14SAndroid Build Coastguard Worker u'Thread Harness Automation Documentation', 331*cfb92d14SAndroid Build Coastguard Worker [author], 332*cfb92d14SAndroid Build Coastguard Worker 1, 333*cfb92d14SAndroid Build Coastguard Worker)] 334*cfb92d14SAndroid Build Coastguard Worker 335*cfb92d14SAndroid Build Coastguard Worker# If true, show URL addresses after external links. 336*cfb92d14SAndroid Build Coastguard Worker# 337*cfb92d14SAndroid Build Coastguard Worker# man_show_urls = False 338*cfb92d14SAndroid Build Coastguard Worker 339*cfb92d14SAndroid Build Coastguard Worker# -- Options for Texinfo output ------------------------------------------- 340*cfb92d14SAndroid Build Coastguard Worker 341*cfb92d14SAndroid Build Coastguard Worker# Grouping the document tree into Texinfo files. List of tuples 342*cfb92d14SAndroid Build Coastguard Worker# (source start file, target name, title, author, 343*cfb92d14SAndroid Build Coastguard Worker# dir menu entry, description, category) 344*cfb92d14SAndroid Build Coastguard Workertexinfo_documents = [( 345*cfb92d14SAndroid Build Coastguard Worker master_doc, 346*cfb92d14SAndroid Build Coastguard Worker 'ThreadHarnessAutomation', 347*cfb92d14SAndroid Build Coastguard Worker u'Thread Harness Automation Documentation', 348*cfb92d14SAndroid Build Coastguard Worker author, 349*cfb92d14SAndroid Build Coastguard Worker 'ThreadHarnessAutomation', 350*cfb92d14SAndroid Build Coastguard Worker 'One line description of project.', 351*cfb92d14SAndroid Build Coastguard Worker 'Miscellaneous', 352*cfb92d14SAndroid Build Coastguard Worker)] 353*cfb92d14SAndroid Build Coastguard Worker 354*cfb92d14SAndroid Build Coastguard Worker# Documents to append as an appendix to all manuals. 355*cfb92d14SAndroid Build Coastguard Worker# 356*cfb92d14SAndroid Build Coastguard Worker# texinfo_appendices = [] 357*cfb92d14SAndroid Build Coastguard Worker 358*cfb92d14SAndroid Build Coastguard Worker# If false, no module index is generated. 359*cfb92d14SAndroid Build Coastguard Worker# 360*cfb92d14SAndroid Build Coastguard Worker# texinfo_domain_indices = True 361*cfb92d14SAndroid Build Coastguard Worker 362*cfb92d14SAndroid Build Coastguard Worker# How to display URL addresses: 'footnote', 'no', or 'inline'. 363*cfb92d14SAndroid Build Coastguard Worker# 364*cfb92d14SAndroid Build Coastguard Worker# texinfo_show_urls = 'footnote' 365*cfb92d14SAndroid Build Coastguard Worker 366*cfb92d14SAndroid Build Coastguard Worker# If true, do not generate a @detailmenu in the "Top" node's menu. 367*cfb92d14SAndroid Build Coastguard Worker# 368*cfb92d14SAndroid Build Coastguard Worker# texinfo_no_detailmenu = False 369