00001 # All configuration values have a default; values that are commented out 00002 # serve to show the default. 00003 00004 import sys, os 00005 00006 # -- General configuration ----------------------------------------------------- 00007 # Add any Sphinx extension module names here, as strings. They can be extensions 00008 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 00009 extensions = ['sphinx.ext.pngmath', 'sphinxcontrib.doxylink.doxylink'] 00010 pngmath_dvipng_args = ['-gamma 1.5', '-D 110', '-bg Transparent'] 00011 00012 # Add any paths that contain templates here, relative to this directory. 00013 templates_path = ['_templates'] 00014 00015 # The suffix of source filenames. 00016 source_suffix = '.rst' 00017 00018 # The master toctree document. 00019 master_doc = 'index' 00020 00021 # General information about the project. 00022 project = u'PCL' 00023 copyright = '' 00024 00025 # The version info for the project you're documenting, acts as replacement for 00026 # |version| and |release|, also used in various other places throughout the 00027 # built documents. 00028 # 00029 # The short X.Y version. 00030 version = '0.0' 00031 # The full version, including alpha/beta/rc tags. 00032 release = '0.0' 00033 00034 # The language for content autogenerated by Sphinx. Refer to documentation 00035 # for a list of supported languages. 00036 #language = None 00037 00038 # There are two options for replacing |today|: either, you set today to some 00039 # non-false value, then it is used: 00040 #today = '' 00041 # Else, today_fmt is used as the format for a strftime call. 00042 #today_fmt = '%B %d, %Y' 00043 00044 # List of documents that shouldn't be included in the build. 00045 #unused_docs = [] 00046 00047 # List of directories, relative to source directory, that shouldn't be searched 00048 # for source files. 00049 exclude_trees = [] 00050 00051 # The reST default role (used for this markup: `text`) to use for all documents. 00052 default_role = None 00053 00054 # If true, '()' will be appended to :func: etc. cross-reference text. 00055 #add_function_parentheses = True 00056 00057 # If true, the current module name will be prepended to all description 00058 # unit titles (such as .. function::). 00059 add_module_names = False 00060 00061 # If true, sectionauthor and moduleauthor directives will be shown in the 00062 # output. They are ignored by default. 00063 show_authors = False 00064 00065 # The name of the Pygments (syntax highlighting) style to use. 00066 pygments_style = 'sphinx' 00067 00068 # A list of ignored prefixes for module index sorting. 00069 #modindex_common_prefix = [] 00070 00071 # -- Options for HTML output --------------------------------------------------- 00072 00073 # The theme to use for HTML and HTML Help pages. Major themes that come with 00074 # Sphinx are currently 'default' and 'sphinxdoc'. 00075 html_theme = 'sphinxdoc' 00076 00077 # Theme options are theme-specific and customize the look and feel of a theme 00078 # further. For a list of options available for each theme, see the 00079 # documentation. 00080 # html_theme_options = { 'rightsidebar' : 'true' } 00081 00082 # Add any paths that contain custom themes here, relative to this directory. 00083 html_theme_path = ['.'] 00084 00085 # The name for this set of Sphinx documents. If None, it defaults to 00086 # "<project> v<release> documentation". 00087 html_title = None 00088 00089 # A shorter title for the navigation bar. Default is the same as html_title. 00090 html_short_title = 'Home' 00091 00092 # The name of an image file (within the static path) to use as favicon of the 00093 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 00094 # pixels large. 00095 html_favicon = None 00096 00097 # Add any paths that contain custom static files (such as style sheets) here, 00098 # relative to this directory. They are copied after the builtin static files, 00099 # so a file named "default.css" will overwrite the builtin "default.css". 00100 html_static_path = ['_static'] 00101 00102 # If true, SmartyPants will be used to convert quotes and dashes to 00103 # typographically correct entities. 00104 #html_use_smartypants = True 00105 00106 # If false, no module index is generated. 00107 html_use_modindex = False 00108 00109 # If false, no index is generated. 00110 html_use_index = False 00111 00112 # If true, the index is split into individual pages for each letter. 00113 html_split_index = False 00114 00115 # If true, links to the reST sources are added to the pages. 00116 html_show_sourcelink = False 00117 00118 # If true, an OpenSearch description file will be output, and all pages will 00119 # contain a <link> tag referring to it. The value of this option must be the 00120 # base URL from which the finished HTML is served. 00121 #html_use_opensearch = '' 00122 00123 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). 00124 html_file_suffix = '.html' 00125 00126 html_sidebars = { 00127 '**': [], 00128 'using/windows': [], 00129 } 00130 html_show_copyright = False 00131 html_show_sphinx = False 00132 html_add_permalinks = None 00133 needs_sphinx = 1.0 00134 file_insertion_enabled = True 00135 raw_enabled = True 00136 00137 # Set up doxylink 00138 doxylink = {'pcl' : ('../../../build/doc/doxygen/pcl.tag', 'http://docs.pointclouds.org/trunk/')}