Changeset 9dfb1f9 in sasview for docs/sphinx-docs/source/conf.py
- Timestamp:
- Dec 14, 2014 4:48:13 AM (10 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- e497527
- Parents:
- c908b0c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r3586bd1 r9dfb1f9 12 12 # serve to show the default. 13 13 14 import sys, os 14 import sys, os, collections 15 15 16 16 # If extensions (or modules to document with autodoc) are in another directory, 17 17 # add these directories to sys.path here. If the directory is relative to the 18 18 # documentation root, use os.path.abspath to make it absolute, like shown here. 19 sys.path.insert(0, os.path.abspath('../../src')) 19 from distutils.util import get_platform 20 platform = '.%s-%s'%(get_platform(),sys.version[:3]) 21 build_lib = os.path.abspath('../../../build/lib'+platform) 22 sys.path.insert(0, build_lib) 23 print "-- path --" 24 print "\n".join(sys.path) 25 import sans.sansview 26 from sans.sansview import __version__ as sasview_version 27 print "version:",sasview_version 20 28 21 29 # -- General configuration ----------------------------------------------------- … … 26 34 # Add any Sphinx extension module names here, as strings. They can be extensions 27 35 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 28 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode'] 36 extensions = ['sphinx.ext.autodoc', 37 'sphinx.ext.todo', 38 'sphinx.ext.coverage', 39 'sphinx.ext.mathjax', 40 'sphinx.ext.viewcode'] 29 41 30 42 # Add any paths that contain templates here, relative to this directory. … … 65 77 # List of patterns, relative to source directory, that match files and 66 78 # directories to ignore when looking for source files. 67 exclude_patterns = [] 79 # 80 # PGP 2014/04/03: We have some code which doesn't get carried over to 81 # the build directory. Exclude the appropriate *.rst files here so 82 # that we don't get various "ImportError: No module named ___" when 83 # running Sphinx. 84 exclude_patterns = ["*sans.perspectives.simulation.rst", 85 "*sans.pr.c_extensions.rst", 86 "*sans.realspace.rst", 87 "*sans.simulation.rst",] 68 88 69 89 # The reST default role (used for this markup: `text`) to use for all documents. … … 169 189 # Output file base name for HTML help builder. 170 190 htmlhelp_basename = 'SasViewdoc' 191 192 # Turn off permalinks, which are a nice feature for the docs when viewed in a 193 # browser, but which look weird (and cannot be "right-click->copy url") in 194 # the SasView help. 195 html_add_permalinks = "" 171 196 172 197
Note: See TracChangeset
for help on using the changeset viewer.