Changeset 5bf0331 in sasview for docs/sphinx-docs/source/conf.py
- Timestamp:
- May 5, 2014 9:21:47 AM (11 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:
- 644ca73
- Parents:
- 6f87cc1 (diff), 0089be3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r9e78edb r3586bd1 12 12 # serve to show the default. 13 13 14 import sys, os , collections14 import sys, os 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 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 19 sys.path.insert(0, os.path.abspath('../../src')) 28 20 29 21 # -- General configuration ----------------------------------------------------- … … 34 26 # Add any Sphinx extension module names here, as strings. They can be extensions 35 27 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 36 extensions = ['sphinx.ext.autodoc', 37 'sphinx.ext.todo', 38 'sphinx.ext.coverage', 39 'sphinx.ext.mathjax', 40 'sphinx.ext.viewcode'] 28 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode'] 41 29 42 30 # Add any paths that contain templates here, relative to this directory. … … 77 65 # List of patterns, relative to source directory, that match files and 78 66 # directories to ignore when looking for source files. 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",] 67 exclude_patterns = [] 88 68 89 69 # The reST default role (used for this markup: `text`) to use for all documents. … … 189 169 # Output file base name for HTML help builder. 190 170 htmlhelp_basename = 'SasViewdoc' 191 192 # Turn off permalinks, which are a nice feature for the docs when viewed in a193 # browser, but which look weird (and cannot be "right-click->copy url") in194 # the SasView help.195 html_add_permalinks = ""196 171 197 172
Note: See TracChangeset
for help on using the changeset viewer.